home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Hardware / Mac_OS_USB_DDK_v1.2 / Interfaces / SIOW.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-15  |  1.5 KB  |  52 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SIOW.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12. /*------------------------------------------------------------------------------
  13. #    SIOW.h
  14. #    Simple Inpue/Output Window header
  15. #    Apple Copyright 1989-1990
  16. #
  17. #    The names for these constants have been selected to satisfy both the
  18. #    standards set up by Apple for applications, and by ANSI for C programming.
  19. #
  20. #-----------------------------------------------------------------------------*/
  21.  
  22. #ifndef __SIOW__
  23. #define __SIOW__
  24.  
  25. #ifndef __kPrefSize
  26. #define __kPrefSize            122        /* Default max app size */
  27. #endif
  28. #ifndef __kMinSize
  29. #define __kMinSize            38        /* Default min app size */
  30. #endif
  31.  
  32. /* The following constants are used to identify menus and their items. */
  33. /* NOTE: resources IDs 20000-20010 are reserved fur use by SIOW */
  34.  
  35. #define    __mApple            20000    /* Apple menu */
  36. #define    __mFile                20001    /* File menu */
  37. #define    __mEdit                20002    /* Edit menu */
  38. #define __mFont                20003    /* Font menu */
  39. #define __mSize                20004    /* Font menu */
  40.  
  41. #define    __rMenuBar            20000    /* application's menu bar */
  42. #define    __rAboutAlert        20000    /* about alert */
  43. #define    __rUserAlert        20001    /* user error alert */
  44. #define __rSaveAlert        20002    /* save changes alert */
  45. #define    __rDocWindow        20000    /* application's window */
  46. #define    __rVScroll            20000    /* vertical scrollbar control */
  47. #define    __rHScroll            20001    /* horizontal scrollbar control */
  48. #define    __kErrStrings        20000    /* error string list */
  49.  
  50. #endif
  51.  
  52.